home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctutor2 / bigarray.c < prev    next >
Text File  |  1986-06-25  |  512b  |  20 lines

  1. char name1[] = "First Program Title";
  2.  
  3. main()
  4. {
  5. int index;
  6. int stuff[12];
  7. float weird[12];
  8. static char name2[] = "Second Program Title";
  9.  
  10.    for (index = 0;index < 12;index++) {
  11.       stuff[index] = index + 10;
  12.       weird[index] = 12.0 * (index + 7);
  13.    }
  14.  
  15.    printf("%s\n",name1);
  16.    printf("%s\n\n",name2);
  17.    for (index = 0;index < 12;index++)
  18.       printf("%5d %5d %10.3f\n",index,stuff[index],weird[index]);
  19. }
  20.